home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / controls / Spacer.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  327 b   |  19 lines

  1. package mx.controls
  2. {
  3.    import mx.core.UIComponent;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class Spacer extends UIComponent
  9.    {
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.       
  12.       public function Spacer()
  13.       {
  14.          super();
  15.       }
  16.    }
  17. }
  18.  
  19.